home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ocean12aspcalendar.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(15974);
  9.  script_bugtraq_id(11931);
  10.  script_version("$Revision: 1.1 $");
  11.  name["english"] = "Ocean12 ASP Calendar Administrative Access";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running Ocean12 ASP Calendar, a web based
  16. application written in ASP.
  17.  
  18. There is a flaw in the remote software which may allow anyone
  19. execute admnistrative commands on the remote host by requesting
  20. the page /admin/main.asp.
  21.  
  22. An attacker may exploit this flaw to deface the remote site without
  23. any credentials.
  24.  
  25. Solution : Upgrade to the latest version of this software
  26. Risk factor : High";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "auth bypass test";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "CGI abuses";
  39.  script_family(english:family["english"]);
  40.  script_dependencie("http_version.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. include("http_func.inc");
  46. include("http_keepalive.inc");
  47.  
  48.  
  49.  
  50. port = get_http_port(default:80);
  51.  
  52. if(!get_port_state(port))exit(0);
  53. if ( ! can_host_asp(port:port) ) exit(0);
  54.  
  55.  
  56. foreach dir (cgi_dirs()) 
  57.  {
  58.   req = http_get(item:dir + "/admin/main.asp", port:port);
  59.   res = http_keepalive_send_recv(port:port, data:req);
  60.   if ( res == NULL ) exit(0);
  61.   if ("<title>Ocean12 ASP Calendar Manager</title>" >< res &&
  62.       '<a href="add.asp">' >< res )
  63.     {
  64.       security_hole(port);
  65.       exit(0);
  66.     }
  67.  }
  68.